home *** CD-ROM | disk | FTP | other *** search
/ Aminet 28 / Aminet 28 (1998)(GTI - Schatztruhe)[!][Dec 1998].iso / Aminet / dev / misc / gms_dev.lha / GMSDev / Includes / clib / sound_protos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-03-15  |  476 b   |  25 lines

  1. #ifndef  CLIB_SOUND_PROTOS_H
  2. #define  CLIB_SOUND_PROTOS_H
  3.  
  4. /*
  5. **   $VER: sound_protos.h V1.0
  6. **
  7. **   C prototypes.
  8. **
  9. **   (C) Copyright 1996-1998 DreamWorld Productions.
  10. **       All Rights Reserved.
  11. */
  12.  
  13. #ifndef  DPKERNEL_H
  14. #include <dpkernel/dpkernel.h>
  15. #endif
  16.  
  17. APTR AllocSoundMem(LONG Size, LONG Flags);
  18. LONG CheckSound(struct Sound *);
  19. void FreeSoundMem(APTR MemBlock);
  20. LONG SetVolume(struct Sound *, WORD Volume);
  21. void StopAudio(void);
  22.  
  23. #endif /* CLIB_SOUND_PROTOS_H */
  24.  
  25.